home *** CD-ROM | disk | FTP | other *** search
- #include "defines.h"
- #include "includes.h"
-
- struct mp3ent *append(struct mp3ent *entry)
- {
- struct mp3ent *temp ;
- char *tempstr ;
-
- temp=(struct mp3ent *)calloc(1,sizeof(struct mp3ent));
- tempstr=(char *)calloc(1,TITLELEN + 1);
- temp->fname=tempstr;
- temp->prev=entry;
- temp->next=NULL;
- entry->next=temp;
- return temp;
- }
-